home *** CD-ROM | disk | FTP | other *** search
/ Technotools / Technotools (Chestnut CD-ROM)(1993).ISO / lang_c / ctb100t / colors.h < prev    next >
Text File  |  1987-08-28  |  798b  |  36 lines

  1. /*                                 colors.h
  2.  *
  3.  *   This is a header for the C toolbox.  It defines colors and monochrome
  4.  *   attributes.
  5.  *
  6.  */
  7.  
  8.  
  9. #define  BLACK        0
  10. #define  BLUE         1
  11. #define  GREEN        2
  12. #define  CYAN         3
  13. #define  RED          4
  14. #define  MAGENTA      5
  15. #define  BROWN        6
  16. #define  GRAY         7
  17. #define  GREY         7
  18. #define  WHITE        7
  19. #define  DARK_GREY    8
  20. #define  DARK_GRAY    8
  21. #define  LTBLUE       9
  22. #define  LTGREEN     10
  23. #define  LTCYAN      11
  24. #define  LTRED       12
  25. #define  LTMAGENTA   13
  26. #define  LTBROWN     14
  27. #define  YELLOW      14
  28. #define  LTWHITE     15
  29.  
  30. #define  NORMAL      0X07
  31. #define  UNDERLINE   0x01
  32. #define  REVERSE     0x70
  33. #define  BRIGHT      0x08
  34. #define  BLINK       0x80
  35.   
  36.